home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1998 September
/
EnigmA AMIGA RUN 30 (1998)(G.R. Edizioni)(IT)[!][issue 1998-09].iso
/
earkit
/
news
/
thor
/
rexx
/
fse
/
unquote.fse
< prev
next >
Wrap
Text File
|
1998-07-09
|
529b
|
31 lines
/*
** $VER: Unqoute.fse 1.0 (6.9.95)
** - reduce the layer of qoute chars (">") in a block of text
** to just one level.
*/
options results
YPOS
currline = result
XPOS
currcolumn = result
MSGLENGTH
lastline = result
do i=currline to lastline
SETPOS 1 i
GETLINE
line = result
if(line ~= "") then do
DELETELINES
NEWLINE
SETPOS 1 i
INSERTINPUT ">"||strip(line, L, ">")
end
else break
end
SETPOS currcolumn currline